home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / printf.c < prev    next >
C/C++ Source or Header  |  1993-10-11  |  265b  |  19 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include "lib.h"
  4.  
  5. #if __STDC__
  6. int printf(const char *fmt, ...)
  7. #else
  8. int printf(fmt) const char *fmt;
  9. #endif
  10. {
  11.     va_list args;
  12.     int r;
  13.  
  14.     va_start(args, fmt);
  15.     r = _doprnt(fputc, stdout, fmt, args);
  16.     va_end(args);
  17.     return r;
  18. }
  19.